summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2023-06-25 02:31:20 +0200
committerMorph <39850852+Morph1984@users.noreply.github.com>2023-06-30 19:33:14 +0200
commitfbd85417ffdfe23dd4b4d3d13518244bd00be361 (patch)
tree6c2fd6f04f9dbe77c852181f688f0e33f0b811b2
parentscratch_buffer: Add member types to ScratchBuffer (diff)
downloadyuzu-fbd85417ffdfe23dd4b4d3d13518244bd00be361.tar
yuzu-fbd85417ffdfe23dd4b4d3d13518244bd00be361.tar.gz
yuzu-fbd85417ffdfe23dd4b4d3d13518244bd00be361.tar.bz2
yuzu-fbd85417ffdfe23dd4b4d3d13518244bd00be361.tar.lz
yuzu-fbd85417ffdfe23dd4b4d3d13518244bd00be361.tar.xz
yuzu-fbd85417ffdfe23dd4b4d3d13518244bd00be361.tar.zst
yuzu-fbd85417ffdfe23dd4b4d3d13518244bd00be361.zip
-rw-r--r--src/common/ring_buffer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/ring_buffer.h b/src/common/ring_buffer.h
index 416680d44..5c961b202 100644
--- a/src/common/ring_buffer.h
+++ b/src/common/ring_buffer.h
@@ -54,7 +54,7 @@ public:
return push_count;
}
- std::size_t Push(const std::span<T> input) {
+ std::size_t Push(std::span<const T> input) {
return Push(input.data(), input.size());
}